concurrent access - definição. O que é concurrent access. Significado, conceito
Diclib.com
Dicionário ChatGPT
Digite uma palavra ou frase em qualquer idioma 👆
Idioma:

Tradução e análise de palavras por inteligência artificial ChatGPT

Nesta página você pode obter uma análise detalhada de uma palavra ou frase, produzida usando a melhor tecnologia de inteligência artificial até o momento:

  • como a palavra é usada
  • frequência de uso
  • é usado com mais frequência na fala oral ou escrita
  • opções de tradução de palavras
  • exemplos de uso (várias frases com tradução)
  • etimologia

O que (quem) é concurrent access - definição

MEASURES TO ENSURE CONCURRENT COMPUTING OPERATIONS GENERATE CORRECT RESULTS
Concurrent access; Global concurrency control; Multidatabase concurrency control; Modular concurrency control

Concurrency control         
In information technology and computer science, especially in the fields of computer programming, operating systems, multiprocessors, and databases, concurrency control ensures that correct results for concurrent operations are generated, while getting those results as quickly as possible.
Concurrent computing         
FORM OF COMPUTING IN WHICH SEVERAL COMPUTATIONS ARE EXECUTING DURING OVERLAPPING TIME PERIODS
Concurrent programming; Concurrent process; Concurrent programming language; Concurrent computation; Concurrent Programming; Concurrent algorithm; COPL; Process Communication Model (computing); Concurrent program; Concurrency (computing); Concurrent programming languages; Sequential programming; History of concurrent programming; List of languages supporting concurrent programming; Software concurrency
Concurrent computing is a form of computing in which several computations are executed concurrently—during overlapping time periods—instead of sequentially—with one completing before the next starts.
CREW PRAM         
ABSTRACT COMPUTER FOR DESIGNING PARALLEL ALGORITHMS
Parallel random access machine; Exclusive Read Exclusive Write; Concurrent Read Exclusive Write; Concurrent Read Concurrent Write; EREW; CRCW; Parallel random access model; Concurrent read, exclusive write; ERCW; Concurrent read, concurrent write; Exclusive read, concurrent write; Exclusive read, exclusive write; CRCW-PRAM; CRCW PRAM; EREW-PRAM; EREW PRAM; CREW-PRAM; CREW PRAM; ERCW-PRAM; ERCW PRAM; Concurrent random access machine; Parallel Random Access Machine; Parallel random-access machine
concurrent read, exclusive write PRAM.

Wikipédia

Concurrency control

In information technology and computer science, especially in the fields of computer programming, operating systems, multiprocessors, and databases, concurrency control ensures that correct results for concurrent operations are generated, while getting those results as quickly as possible.

Computer systems, both software and hardware, consist of modules, or components. Each component is designed to operate correctly, i.e., to obey or to meet certain consistency rules. When components that operate concurrently interact by messaging or by sharing accessed data (in memory or storage), a certain component's consistency may be violated by another component. The general area of concurrency control provides rules, methods, design methodologies, and theories to maintain the consistency of components operating concurrently while interacting, and thus the consistency and correctness of the whole system. Introducing concurrency control into a system means applying operation constraints which typically result in some performance reduction. Operation consistency and correctness should be achieved with as good as possible efficiency, without reducing performance below reasonable levels. Concurrency control can require significant additional complexity and overhead in a concurrent algorithm compared to the simpler sequential algorithm.

For example, a failure in concurrency control can result in data corruption from torn read or write operations.